@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --accent-color: #F1D7BB;
  --nav-height: 80px;
}

/* navbar animation */

/* Base Styles */
body {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* background-image: url(assets/Top\ bg\ gradient.png); */
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  background-size: 1200% 1200px; /* Full width, fixed 100px height */
  background-position: top center;
  font-family: 'Manrope', sans-serif;
  

  
}

/* Navbar Container */
.navbar {
  min-height: var(--nav-height);
  /* background-color: var(--secondary-color) !important; */
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

/* Logo Styles */
.navbar-brand {
  padding: 0;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  min-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Mobile Toggle Button */
.navbar-toggler {
  border: none;
  color: var(--primary-color);
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}

/* Navigation Items */
.navbar-nav {
  align-items: center;
}

.nav-item {
  margin: 0 0.5rem;
  position: relative;
}

.Nav_items {
  color: var(--primary-color) !important;
  font-weight: 300;
  font-size:16px;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.Nav_items:hover {
  color: var(--accent-color) !important;
}

.Nav_items::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.Nav_items:hover::after {
  width: 70%;
}

/* Action Button */
.framer-button {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 200px;
  font-size: 14px;
  z-index: 1;
}

.framer-button span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.framer-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  z-index: 1;
}

.framer-button:hover {
  border-color: var(--accent-color);
}

.framer-button:hover::before {
  width: 100%;
}

.framer-button:hover span {
  color: var(--secondary-color) !important;
}

.framer-button svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.framer-button:hover svg {
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .navbar-collapse {
    background-color: var(--secondary-color);
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .navbar-nav {
    width: 100%;
  }
  
  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }
  
  .Nav_items {
    padding: 0.75rem !important;
  }
  
  .Nav_items::after {
    display: none;
  }
  
  .framer-button {
    margin-top: 1rem;
    width: auto;
    padding: 8px 16px;
  }
  
  .navbar-brand img {
    height: 45px;
    min-width: 110px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem;
  }
  
  .navbar-brand img {
    height: 40px;
    min-width: 100px;
  }
  
  .Nav_items {
    font-size: 0.9rem;
  }
  
  .framer-button {
    font-size: 13px;
    padding: 7px 14px;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 35px;
    min-width: 90px;
  }
  
  .navbar {
    min-height: 70px;
  }
  
  .framer-button {
    max-width: 180px;
    gap: 6px;
  }
  
  .framer-button svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 400px) {
  .navbar-brand img {
    height: 30px;
    min-width: 80px;
  }
  
  .Nav_items {
    padding: 0.5rem !important;
    font-size: 0.85rem;
  }
  
  .framer-button {
    font-size: 12px;
    padding: 6px 12px;
  }
}
/* Import DM Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* Collapse content center-aligned on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar_items {
    padding: 0;
    margin: 1rem 0;
  color: #ffffff!important;
  }
  
  .navbar_btn {
    width: 100%;
    max-width: 300px;
    margin: 1rem auto 0;
  }
 

}


.pricing-header {
  text-align: center;
  padding: 4rem 0;
}

.pricing-header h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-header p {
  font-size: 32pxrem;
  color: #999;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-type {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.price span {
  font-size: 1rem;
  color: #999;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-list li::before {
  content: "✓";
  color: #F1D7BB;
  margin-right: 0.5rem;
}

.most-popular {
  background-color: #F1D7BB;
  color: #000000;
  font-size: 0.8rem;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
  width: 112px;
  text-align: center;
  
}

.btn-carrier-setup {
  background-color: transparent;
  border: 1px solid #F1D7BB;
  color: #F1D7BB;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  width: 100%;
  margin-top: auto;
  transition: all 0.3s ease;
}

.btn-carrier-setup:hover {
  background-color: #000000;
  color: #fff;
}

.footer {
  margin-top: 6rem;
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: px;
  margin-bottom: 2rem;
}

.footer-address {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
}

.footer-copyright {
  color: #666;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .pricing-header h1 {
      font-size: 2rem;
  }
  
  .pricing-card {
      margin-bottom: 2rem;
  }
  
  .navbar-collapse {
      background-color: rgba(0, 0, 0, 0.95);
      padding: 1rem;
      border-radius: 8px;
  }
}


.Bg_glow::before{
  content: "";
  background: white;
  position: absolute;
  width: 50%;
  height: 270px;
  filter: blur(245px);
  left: 266px;
  top: 100%;
  z-index: -1;
  opacity: 0.5;
}